home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / H-i586-cygwin32 / i586-cygwin32 / include / wchar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-04  |  482 b   |  28 lines

  1. /* wchar.h
  2.  
  3.    Copyright 1998 Cygnus Solutions
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. #ifndef _WCHAR_H
  12. #define _WCHAR_H
  13.  
  14. #include <sys/cdefs.h>
  15.  
  16. /* Get wchar_t from <stddef.h>.  */
  17. #define __need_wchar_t
  18. #include <stddef.h>
  19.  
  20. __BEGIN_DECLS
  21.  
  22. int wcscmp (wchar_t *__s1, wchar_t *__s2);
  23. int wcslen (wchar_t *__s1);
  24.  
  25. __END_DECLS
  26.  
  27. #endif /* _WCHAR_H */
  28.